/* ============================================================================
   Rent La Ventana — components
   ----------------------------------------------------------------------------
   Imports tokens.css. Plain, namespaced classes (.rlv-*). No utility soup.
   ========================================================================= */

@import url("./tokens.css");

/* ----------------------------------------------------------------------------
   Layout: section + container
   ------------------------------------------------------------------------- */
.rlv-section {
  padding: var(--rlv-section-y) var(--rlv-section-x);
  border-bottom: 1px solid var(--rlv-rule);
  background: var(--rlv-paper);
}
.rlv-section--warm   { background: var(--rlv-paper-warm); }
.rlv-section--custard{ background: var(--rlv-custard); color: var(--rlv-lyons); }
.rlv-section--lyons  { background: var(--rlv-lyons); color: var(--rlv-custard); border-bottom-color: rgba(255,255,255,0.08); }
.rlv-section--ink    { background: var(--rlv-ink); color: #EFE9DD; border-bottom-color: rgba(255,255,255,0.08); }

.rlv-container        { max-width: var(--rlv-container);        margin: 0 auto; }
.rlv-container--narrow{ max-width: var(--rlv-container-narrow); margin: 0 auto; }
.rlv-container--prose { max-width: var(--rlv-container-prose);  margin: 0 auto; }

/* ----------------------------------------------------------------------------
   Type roles — drop-in classes
   ------------------------------------------------------------------------- */
.rlv-h1 {
  font-family: var(--rlv-font-display);
  font-weight: var(--rlv-weight-display);
  font-size: var(--rlv-fs-display-xl);
  line-height: var(--rlv-lh-display);
  letter-spacing: var(--rlv-tracking-display);
  margin: 0;
}
.rlv-h2 {
  font-family: var(--rlv-font-display);
  font-weight: var(--rlv-weight-display);
  font-size: var(--rlv-fs-display-md);
  line-height: var(--rlv-lh-display-2);
  letter-spacing: var(--rlv-tracking-display);
  margin: 0;
}
.rlv-h3 {
  font-family: var(--rlv-font-display);
  font-weight: var(--rlv-weight-display-book);
  font-size: var(--rlv-fs-display-sm);
  line-height: var(--rlv-lh-tight);
  letter-spacing: -0.015em;
  margin: 0;
}
.rlv-h1 em, .rlv-h2 em, .rlv-h3 em { font-style: italic; color: var(--rlv-marmalade); font-weight: inherit; }
.rlv-h1--ink em, .rlv-h2--ink em, .rlv-h3--ink em { color: inherit; opacity: 0.95; }

.rlv-lede {
  font-family: var(--rlv-font-body);
  font-size: var(--rlv-fs-body-lg);
  font-weight: var(--rlv-weight-body-light);
  line-height: var(--rlv-lh-body);
  color: var(--rlv-ink-soft);
  margin: 0;
  max-width: 56ch;
}
.rlv-body {
  font-size: var(--rlv-fs-body);
  font-weight: var(--rlv-weight-body-light);
  line-height: var(--rlv-lh-body);
  color: var(--rlv-ink-soft);
  margin: 0;
  max-width: 64ch;
}
.rlv-caption {
  font-size: var(--rlv-fs-caption);
  color: var(--rlv-ink-muted);
  letter-spacing: var(--rlv-tracking-caption);
  font-family: var(--rlv-font-body);
}

/* ----------------------------------------------------------------------------
   Pull quote / aside
   ------------------------------------------------------------------------- */
.rlv-pull {
  border-left: 1px solid var(--rlv-marmalade);
  padding: 4px 0 4px 24px;
  font-family: var(--rlv-font-display);
  font-weight: var(--rlv-weight-display);
  font-size: 24px;
  line-height: 1.3;
  color: var(--rlv-ink);
  max-width: 480px;
  margin: 0;
}
.rlv-pull em { font-style: italic; color: var(--rlv-marmalade); }

/* ----------------------------------------------------------------------------
   Buttons — small uppercase pill with a soft custard halo behind it.
   The system standard for every CTA across the site (topbar, hero, modal,
   owners, search). Two-layer construction: pill + slightly larger plate
   behind it that fans on hover. Snapdragon hover fill.

   Variants:
     .rlv-btn                    custard primary (default)
     .rlv-btn--ink               dark inverted (custard text)
     .rlv-btn--lyons             on warm sections, lyons fill
     .rlv-btn--marmalade         warm accent
     .rlv-btn--ghost             hairline ghost
     .rlv-btn--ghost-light       hairline ghost on dark surfaces
     .rlv-btn--whatsapp          WhatsApp green
   Sizes: .rlv-btn--sm, .rlv-btn--lg
   ------------------------------------------------------------------------- */
.rlv-btn {
  --btn-bg:        var(--rlv-custard);
  --btn-fg:        var(--rlv-lyons);
  --btn-bg-hover:  var(--rlv-snapdragon);
  --btn-plate:     rgba(254, 216, 119, 0.42);
  --btn-plate-on:  rgba(254, 216, 119, 0.85);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  font-family: var(--rlv-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: var(--rlv-shadow-pill);
  transition: transform var(--rlv-dur) var(--rlv-ease),
              background var(--rlv-dur) var(--rlv-ease),
              box-shadow var(--rlv-dur) var(--rlv-ease);
  appearance: none;
}
/* Back plate — slightly larger halo behind. The signature layered move. */
.rlv-btn::before {
  content: "";
  position: absolute;
  inset: -5px -8px;
  border-radius: 999px;
  background: var(--btn-plate);
  opacity: 0.55;
  z-index: -1;
  transition: inset var(--rlv-dur) var(--rlv-ease), opacity var(--rlv-dur) var(--rlv-ease);
  pointer-events: none;
}
.rlv-btn:hover {
  transform: translateY(-1px);
  background: var(--btn-bg-hover);
  box-shadow: var(--rlv-shadow-pill-hover);
}
.rlv-btn:hover::before { inset: -7px -12px; opacity: 0.85; background: var(--btn-plate-on); }
.rlv-btn:active { transform: translateY(0); }
.rlv-btn:focus-visible { outline: 2px solid var(--rlv-marmalade); outline-offset: 4px; }
.rlv-btn svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--rlv-dur) var(--rlv-ease);
}
.rlv-btn:hover svg { transform: translate(1px, -1px) rotate(-4deg); }
.rlv-btn[data-icon="arrow"]:hover svg { transform: translateX(3px) rotate(0); }

/* Variants */
.rlv-btn--ink {
  --btn-bg:        var(--rlv-ink);
  --btn-fg:        var(--rlv-custard);
  --btn-bg-hover:  #0F1216;
  --btn-plate:     rgba(27, 31, 35, 0.16);
  --btn-plate-on:  rgba(27, 31, 35, 0.30);
}
.rlv-btn--lyons {
  --btn-bg:        var(--rlv-lyons);
  --btn-fg:        var(--rlv-custard);
  --btn-bg-hover:  #013B4E;
  --btn-plate:     rgba(1, 88, 113, 0.18);
  --btn-plate-on:  rgba(1, 88, 113, 0.32);
}
.rlv-btn--teal {
  --btn-bg:        var(--rlv-teal);
  --btn-fg:        var(--rlv-paper);
  --btn-bg-hover:  #006663;
  --btn-plate:     rgba(0, 127, 123, 0.22);
  --btn-plate-on:  rgba(0, 127, 123, 0.38);
}
.rlv-btn--marmalade {
  --btn-bg:        var(--rlv-marmalade);
  --btn-fg:        var(--rlv-paper);
  --btn-bg-hover:  #A1530C;
  --btn-plate:     rgba(193, 101, 18, 0.22);
  --btn-plate-on:  rgba(193, 101, 18, 0.38);
}
.rlv-btn--whatsapp {
  --btn-bg:        #25D366;
  --btn-fg:        #FFFFFF;
  --btn-bg-hover:  #1FB659;
  --btn-plate:     rgba(37, 211, 102, 0.22);
  --btn-plate-on:  rgba(37, 211, 102, 0.38);
}
.rlv-btn--ghost {
  --btn-bg:        transparent;
  --btn-fg:        var(--rlv-ink);
  --btn-bg-hover:  var(--rlv-ink);
  --btn-plate:     transparent;
  --btn-plate-on:  transparent;
  box-shadow: 0 0 0 1px var(--rlv-ink-soft) inset;
}
.rlv-btn--ghost:hover {
  color: var(--rlv-paper);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 14px 24px -10px rgba(27,31,35,0.30);
}
.rlv-btn--ghost-light {
  --btn-bg:        transparent;
  --btn-fg:        var(--rlv-paper);
  --btn-bg-hover:  var(--rlv-paper);
  --btn-plate:     transparent;
  --btn-plate-on:  transparent;
  box-shadow: 0 0 0 1px rgba(250, 248, 243, 0.45) inset;
}
.rlv-btn--ghost-light:hover { color: var(--rlv-lyons); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset; }

/* Sizes */
.rlv-btn--sm { padding: 10px 18px; font-size: 10px; letter-spacing: 0.20em; gap: 7px; }
.rlv-btn--sm svg { width: 11px; height: 11px; }
.rlv-btn--lg { padding: 16px 30px; font-size: 12px; letter-spacing: 0.24em; gap: 10px; }
.rlv-btn--lg svg { width: 14px; height: 14px; }

/* Inline link — body links sit in Lyons for AA contrast, underline on hover */
.rlv-link {
  color: var(--rlv-lyons);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--rlv-dur) var(--rlv-ease), color var(--rlv-dur) var(--rlv-ease);
}
.rlv-link:hover { border-bottom-color: var(--rlv-marmalade); color: var(--rlv-marmalade); }

/* Section link — "VIEW ALL →" pattern used in section heads.
   Small caps with growing gap and color shift on hover. */
.rlv-section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rlv-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rlv-lyons);
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 88, 113, 0.30);
  padding-bottom: 4px;
  transition: color 180ms var(--rlv-ease),
              border-color 180ms var(--rlv-ease),
              gap 220ms var(--rlv-ease);
}
.rlv-section-link:hover {
  color: var(--rlv-marmalade);
  border-bottom-color: var(--rlv-marmalade);
  gap: 14px;
}
.rlv-dark .rlv-section-link {
  color: var(--rlv-snapdragon);
  border-bottom-color: rgba(254, 216, 119, 0.4);
}
.rlv-dark .rlv-section-link:hover {
  color: var(--rlv-paper);
  border-bottom-color: var(--rlv-paper);
}
.rlv-section-link svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

/* Arrow-style "read more" — editorial chevron, no underline (light variant) */
.rlv-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--rlv-font-body);
  font-size: 14px;
  font-weight: var(--rlv-weight-body-medium);
  letter-spacing: 0.04em;
  color: var(--rlv-lyons);
  text-decoration: none;
}
.rlv-link-arrow svg { width: 14px; height: 14px; transition: transform var(--rlv-dur) var(--rlv-ease); }
.rlv-link-arrow:hover svg { transform: translateX(4px); }
.rlv-link-arrow:hover { color: var(--rlv-marmalade); }

/* ----------------------------------------------------------------------------
   Eyebrow chip / pill
   ------------------------------------------------------------------------- */
.rlv-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--rlv-font-body);
  font-size: var(--rlv-fs-eyebrow);
  font-weight: var(--rlv-weight-body-medium);
  letter-spacing: var(--rlv-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--rlv-lyons);
  background: var(--rlv-custard);
  border-radius: var(--rlv-radius-pill);
}
.rlv-chip--teal     { color: var(--rlv-paper); background: var(--rlv-teal); }
.rlv-chip--outline  { color: var(--rlv-ink-soft); background: transparent; border: 1px solid var(--rlv-rule); }

/* ----------------------------------------------------------------------------
   Inputs & forms — layered, pill-shaped, clean girl.
   Each field is a soft warm-paper pill with an inset hairline. Label sits
   ABOVE in a custard-toned eyebrow; an icon slot lives inside on the left.
   Focus pulls a soft custard ring + slight lift. No hard borders.
   ------------------------------------------------------------------------- */
.rlv-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rlv-label {
  font-family: var(--rlv-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rlv-ink-soft);
  padding-left: 4px;
}
.rlv-label--accent { color: var(--rlv-marmalade); }

/* Wrapper for icon + input */
.rlv-inputwrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--rlv-paper-warm);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(27,31,35,0.06) inset,
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 6px 14px -10px rgba(27,31,35,0.18);
  transition: box-shadow var(--rlv-dur) var(--rlv-ease), transform var(--rlv-dur) var(--rlv-ease);
}
.rlv-inputwrap:hover {
  box-shadow:
    0 0 0 1px rgba(27,31,35,0.10) inset,
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 10px 20px -12px rgba(27,31,35,0.22);
}
.rlv-inputwrap:focus-within {
  box-shadow:
    0 0 0 1px rgba(193,101,18,0.5) inset,
    0 0 0 4px rgba(254,216,119,0.45),
    0 1px 0 rgba(255,255,255,0.7) inset;
  transform: translateY(-1px);
}
.rlv-inputwrap__icon {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--rlv-ink-soft);
  display: grid; place-items: center;
  pointer-events: none;
}
.rlv-inputwrap__icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.rlv-inputwrap--icon .rlv-input,
.rlv-inputwrap--icon .rlv-select { padding-left: 44px; }

.rlv-input,
.rlv-select {
  width: 100%;
  padding: 16px 22px;
  font-family: var(--rlv-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--rlv-ink);
  background: transparent;
  border: none;
  border-radius: 999px;
  outline: none;
  appearance: none;
}
.rlv-input::placeholder { color: var(--rlv-ink-muted); font-weight: 400; }

/* Textarea — keeps the soft surface but a softer rounded rect (not pill) */
.rlv-textarea {
  width: 100%;
  padding: 18px 22px;
  font-family: var(--rlv-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--rlv-ink);
  background: var(--rlv-paper-warm);
  border: none;
  border-radius: 22px;
  outline: none;
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
  box-shadow:
    0 0 0 1px rgba(27,31,35,0.06) inset,
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 6px 14px -10px rgba(27,31,35,0.18);
  transition: box-shadow var(--rlv-dur) var(--rlv-ease);
}
.rlv-textarea::placeholder { color: var(--rlv-ink-muted); font-weight: 400; }
.rlv-textarea:focus {
  box-shadow:
    0 0 0 1px rgba(193,101,18,0.5) inset,
    0 0 0 4px rgba(254,216,119,0.45),
    0 1px 0 rgba(255,255,255,0.7) inset;
}

.rlv-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5 L6 6.5 L11 1.5' fill='none' stroke='%23B17430' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 22px center;
  padding-right: 48px;
}

/* Filter segmented control — pill, layered like buttons */
.rlv-segments {
  display: inline-flex;
  padding: 4px;
  background: var(--rlv-paper-warm);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(27,31,35,0.06) inset,
    0 1px 0 rgba(255,255,255,0.7) inset;
}
.rlv-segments button {
  appearance: none;
  background: transparent;
  border: none;
  padding: 10px 18px;
  font-family: var(--rlv-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rlv-ink-soft);
  cursor: pointer;
  border-radius: 999px;
  transition: background var(--rlv-dur) var(--rlv-ease), color var(--rlv-dur) var(--rlv-ease);
}
.rlv-segments button[aria-pressed="true"],
.rlv-segments button.is-active {
  background: var(--rlv-ink);
  color: var(--rlv-custard);
  box-shadow: 0 4px 10px -6px rgba(27,31,35,0.4);
}
.rlv-segments button:hover:not([aria-pressed="true"]):not(.is-active) { color: var(--rlv-ink); }

/* ----------------------------------------------------------------------------
   Calendar — date picker, layered surface, custard accent.
   ------------------------------------------------------------------------- */
.rlv-calendar {
  position: relative;
  width: 320px;
  padding: 22px;
  background: var(--rlv-paper);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 0 0 1px rgba(27,31,35,0.05),
    0 24px 48px -28px rgba(27,31,35,0.30),
    0 8px 18px -10px rgba(27,31,35,0.14);
}
.rlv-calendar::before {
  content: "";
  position: absolute;
  inset: -8px -10px;
  border-radius: 28px;
  background: var(--rlv-paper-warm);
  z-index: -1;
  opacity: 0.6;
  box-shadow: 0 24px 48px -32px rgba(27,31,35,0.25);
}
.rlv-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.rlv-calendar__title {
  font-family: var(--rlv-font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--rlv-ink);
  margin: 0;
}
.rlv-calendar__title em { font-style: italic; color: var(--rlv-marmalade); }
.rlv-calendar__nav {
  display: inline-flex;
  gap: 8px;
}
.rlv-calendar__navbtn {
  width: 32px; height: 32px;
  border: none;
  background: var(--rlv-paper-warm);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--rlv-ink);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(27,31,35,0.06) inset;
  transition: background var(--rlv-dur-fast) var(--rlv-ease), color var(--rlv-dur-fast) var(--rlv-ease);
}
.rlv-calendar__navbtn:hover { background: var(--rlv-ink); color: var(--rlv-custard); }
.rlv-calendar__navbtn svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rlv-calendar__dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
  padding: 0 2px;
}
.rlv-calendar__dow span {
  font-family: var(--rlv-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rlv-ink-muted);
  text-align: center;
}
.rlv-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.rlv-calendar__day {
  position: relative;
  height: 38px;
  display: grid; place-items: center;
  font-family: var(--rlv-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--rlv-ink);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--rlv-dur-fast) var(--rlv-ease), color var(--rlv-dur-fast) var(--rlv-ease);
}
.rlv-calendar__day:hover { background: var(--rlv-paper-warm); }
.rlv-calendar__day--muted { color: var(--rlv-ink-muted); opacity: 0.5; }
.rlv-calendar__day--today {
  font-weight: 700;
}
.rlv-calendar__day--today::after {
  content: "";
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--rlv-marmalade);
}
.rlv-calendar__day--unavailable {
  color: var(--rlv-ink-muted);
  text-decoration: line-through;
  opacity: 0.4;
  cursor: not-allowed;
}
.rlv-calendar__day--unavailable:hover { background: transparent; }
/* Range states — in-range custard, endpoints solid Ink */
.rlv-calendar__day--inrange {
  background: var(--rlv-custard);
  color: var(--rlv-lyons);
  border-radius: 0;
}
.rlv-calendar__day--start,
.rlv-calendar__day--end {
  background: var(--rlv-ink);
  color: var(--rlv-custard);
  font-weight: 700;
  border-radius: 999px;
  z-index: 1;
  box-shadow: 0 6px 14px -8px rgba(27,31,35,0.5);
}
.rlv-calendar__day--start::before,
.rlv-calendar__day--end::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rlv-custard);
  z-index: -1;
  border-radius: 0;
}
.rlv-calendar__day--start::before { left: 50%; }
.rlv-calendar__day--end::before   { right: 50%; }
.rlv-calendar__day--start.rlv-calendar__day--end::before { display: none; }
.rlv-calendar__foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--rlv-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rlv-calendar__range {
  font-family: var(--rlv-font-body);
  font-size: 12px;
  color: var(--rlv-ink-soft);
}
.rlv-calendar__range strong { color: var(--rlv-ink); font-weight: 600; }
.rlv-calendar__range em { color: var(--rlv-marmalade); font-style: normal; font-weight: 600; }

/* ----------------------------------------------------------------------------
   Property card — editorial portrait.
   ----------------------------------------------------------------------------
   Two layers: a back "plate" (slightly larger, carries the soft shadow) and
   a tall portrait photo card. The photo dominates 2/3; an OPAQUE Ink panel
   sits below it carrying location, the segmented title (glyph + name + accent),
   a supporting line on a hairline, an amenity rail, and a quiet "View →".

   Glass is reserved for the floating chips on the photo (location pill, date
   strip, save) where transparency reads as a label, not a primary surface.
   ------------------------------------------------------------------------- */
.rlv-property {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 14px;
  isolation: isolate;
  transition: transform var(--rlv-dur) var(--rlv-ease);
}

/* BACK PLATE — slightly larger, holds the long drop shadow */
.rlv-property__plate {
  position: relative;
  border-radius: 22px;
  background: var(--rlv-paper-warm);
  padding: 8px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -28px rgba(27,31,35,0.45),
    0 10px 22px -12px rgba(27,31,35,0.20);
}

/* CARD — photo on top, opaque text panel below. Single rounded shape. */
.rlv-property__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--rlv-ink);
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
}

/* PHOTO — the dominant surface, ~2/3 of the card */
.rlv-property__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--rlv-paper-warm) center/cover no-repeat;
  overflow: hidden;
}
.rlv-property__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
}

/* Floating chips ON the photo — these are the only "glass" elements */
.rlv-property__chip {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--rlv-custard);
  color: var(--rlv-lyons);
  font-family: var(--rlv-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 6px 14px -8px rgba(27,31,35,0.45);
}
.rlv-property__chip svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.rlv-property__dates {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  font-family: var(--rlv-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rlv-ink);
  border-radius: 4px;
}
.rlv-property__save {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 3;
  width: 38px; height: 38px;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--rlv-lyons);
  cursor: pointer;
  box-shadow: 0 4px 12px -4px rgba(27,31,35,0.35);
  transition: background var(--rlv-dur-fast) var(--rlv-ease), color var(--rlv-dur-fast) var(--rlv-ease), transform var(--rlv-dur-fast) var(--rlv-ease);
}
.rlv-property__save:hover { background: var(--rlv-marmalade); color: var(--rlv-paper); transform: scale(1.06); }
.rlv-property__save svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }

/* OPAQUE INFO PANEL — sits below the photo. Text is fully solid here. */
.rlv-property__info {
  background: var(--rlv-ink);
  color: var(--rlv-paper);
  padding: 22px 22px 20px;
}

/* Eyebrow — location, in custard. Always solid. */
.rlv-property__loc {
  font-family: var(--rlv-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rlv-custard);
  margin: 0;
}
.rlv-property__loc span { color: rgba(250, 248, 243, 0.45); margin: 0 8px; font-weight: 400; letter-spacing: 0.04em; }

/* Segmented title — glyph + name. Glyph = small property-type mark in custard. */
.rlv-property__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 0;
  font-family: var(--rlv-font-display);
  font-weight: var(--rlv-weight-display-book);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--rlv-paper);
}
.rlv-property__title-glyph {
  flex: 0 0 auto;
  display: inline-block;
  width: 22px; height: 22px;
  color: var(--rlv-custard);
  transform: translateY(2px);
}
.rlv-property__title-glyph svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.rlv-property__title-name { font-style: normal; }
.rlv-property__title-accent { font-style: italic; color: var(--rlv-custard); font-weight: inherit; }

/* Supporting line — single sentence, on a hairline rule */
.rlv-property__sub {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(250, 248, 243, 0.14);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(250, 248, 243, 0.72);
}

/* Footer rail — amenity icons left, view affordance right */
.rlv-property__rail {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rlv-property__icons { display: flex; gap: 16px; color: rgba(250, 248, 243, 0.85); }
.rlv-property__icons svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.rlv-property__view {
  font-family: var(--rlv-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rlv-custard);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rlv-property__view svg { width: 14px; height: 14px; transition: transform var(--rlv-dur) var(--rlv-ease); }
.rlv-property:hover .rlv-property__view svg { transform: translateX(4px); }

/* Hover */
.rlv-property:hover { transform: translateY(-3px); }
.rlv-property:hover .rlv-property__plate {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 44px 80px -32px rgba(27,31,35,0.55),
    0 14px 28px -14px rgba(27,31,35,0.26);
}
.rlv-property:focus-visible { outline: 2px solid var(--rlv-marmalade); outline-offset: 6px; border-radius: 26px; }

/* ---- Light variant: paper info panel for use over warm sections ---- */
.rlv-property--light .rlv-property__card { background: var(--rlv-paper); }
.rlv-property--light .rlv-property__info { background: var(--rlv-paper); color: var(--rlv-ink); }
.rlv-property--light .rlv-property__loc { color: var(--rlv-marmalade); }
.rlv-property--light .rlv-property__loc span { color: var(--rlv-ink-muted); }
.rlv-property--light .rlv-property__title { color: var(--rlv-ink); }
.rlv-property--light .rlv-property__title-glyph { color: var(--rlv-marmalade); }
.rlv-property--light .rlv-property__title-accent { color: var(--rlv-marmalade); }
.rlv-property--light .rlv-property__sub { color: var(--rlv-ink-soft); border-top-color: var(--rlv-rule); }
.rlv-property--light .rlv-property__icons { color: var(--rlv-ink-soft); }
.rlv-property--light .rlv-property__view { color: var(--rlv-lyons); }

/* ----------------------------------------------------------------------------
   Amenity row — hand-feel SVG icons + label pill
   ------------------------------------------------------------------------- */
.rlv-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.rlv-amenity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--rlv-font-body);
  font-size: var(--rlv-fs-caption);
  color: var(--rlv-ink-soft);
}
.rlv-amenity svg {
  width: 26px;
  height: 26px;
  stroke: var(--rlv-lyons);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----------------------------------------------------------------------------
   Navigation — top bar, restrained, paper background.
   ------------------------------------------------------------------------- */
.rlv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--rlv-section-x);
  background: var(--rlv-paper);
  border-bottom: 1px solid var(--rlv-rule);
  font-family: var(--rlv-font-body);
}
.rlv-nav__brand { display: inline-flex; align-items: center; gap: 12px; color: var(--rlv-lyons); text-decoration: none; }
.rlv-nav__brand-mark { width: 36px; height: 36px; border-radius: 50%; }
.rlv-nav__brand-name {
  font-family: var(--rlv-font-display);
  font-weight: var(--rlv-weight-display);
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--rlv-lyons);
  line-height: 1;
}
.rlv-nav__brand-name em { font-style: italic; }
.rlv-nav__brand-eyebrow {
  display: block;
  font-family: var(--rlv-font-body);
  font-size: 9px;
  font-weight: var(--rlv-weight-body-medium);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rlv-ink-muted);
}
.rlv-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.rlv-nav__link {
  font-size: 14px;
  color: var(--rlv-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--rlv-dur) var(--rlv-ease);
}
.rlv-nav__link:hover { color: var(--rlv-marmalade); }
.rlv-nav__lang {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rlv-ink-muted);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.rlv-nav__lang a { color: var(--rlv-ink-muted); text-decoration: none; }
.rlv-nav__lang a.is-active { color: var(--rlv-lyons); }

/* ----------------------------------------------------------------------------
   Wordmark — the editorial nameplate. Three sizes.
   ------------------------------------------------------------------------- */
.rlv-wordmark {
  font-family: var(--rlv-font-display);
  color: var(--rlv-lyons);
  text-align: center;
}
.rlv-wordmark__top {
  font-family: var(--rlv-font-body);
  font-weight: var(--rlv-weight-body-medium);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rlv-ink-muted);
  margin-bottom: 18px;
}
.rlv-wordmark__name {
  font-weight: var(--rlv-weight-display);
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rlv-wordmark__name em { font-style: italic; }
.rlv-wordmark__rule {
  width: 80px;
  height: 1px;
  background: var(--rlv-lyons);
  margin: 22px auto 16px;
  opacity: 0.45;
}
.rlv-wordmark__place {
  font-family: var(--rlv-font-body);
  font-weight: var(--rlv-weight-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rlv-ink-muted);
}
.rlv-wordmark--md .rlv-wordmark__top   { font-size: 9px; letter-spacing: 0.32em; margin-bottom: 8px; }
.rlv-wordmark--md .rlv-wordmark__name  { font-size: 28px; }
.rlv-wordmark--md .rlv-wordmark__rule  { width: 32px; margin: 10px auto 8px; }
.rlv-wordmark--md .rlv-wordmark__place { font-size: 9px; letter-spacing: 0.22em; }

.rlv-wordmark--sm .rlv-wordmark__top   { font-size: 7px; letter-spacing: 0.32em; margin-bottom: 4px; }
.rlv-wordmark--sm .rlv-wordmark__name  { font-size: 14px; font-weight: var(--rlv-weight-display-book); letter-spacing: -0.01em; }
.rlv-wordmark--sm .rlv-wordmark__rule  { width: 18px; margin: 6px auto 4px; }
.rlv-wordmark--sm .rlv-wordmark__place { font-size: 7px; letter-spacing: 0.2em; }

/* ----------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.rlv-footer {
  background: var(--rlv-lyons);
  color: var(--rlv-custard);
  padding: 80px var(--rlv-section-x) 56px;
}
.rlv-footer a { color: var(--rlv-custard); text-decoration: none; opacity: 0.85; }
.rlv-footer a:hover { opacity: 1; border-bottom: 1px solid currentColor; }

/* ----------------------------------------------------------------------------
   Utility — for design system docs
   ------------------------------------------------------------------------- */
.rlv-stack > * + *   { margin-top: var(--rlv-space-5); }
.rlv-stack-sm > * + *{ margin-top: var(--rlv-space-3); }
.rlv-stack-lg > * + *{ margin-top: var(--rlv-space-7); }
.rlv-row             { display: flex; gap: var(--rlv-space-5); align-items: center; flex-wrap: wrap; }

/* ============================================================================
   PATTERNS — composite components used across the public site.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   .rlv-section-head — opener for any major section.
   Layout: eyebrow above, Fraunces title, optional section-link to the right.
   Defaults to two-column (title left / link right). Pass --align: center to
   center everything (used by hero intros and editorial breaks).
   ------------------------------------------------------------------------- */
.rlv-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rlv-rule);
}
.rlv-section-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  border-bottom: none;
}
.rlv-section-head--plain { border-bottom: none; padding-bottom: 0; }
@media (max-width: 760px) {
  .rlv-section-head { grid-template-columns: 1fr; align-items: start; gap: 16px; }
}
.rlv-section-head__title {
  font-family: var(--rlv-font-display);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: var(--rlv-ink);
  margin: 18px 0 0;
  max-width: 18ch;
}
.rlv-section-head__title em {
  font-style: italic;
  color: var(--rlv-marmalade);
  font-weight: 300;
}
.rlv-dark .rlv-section-head__title       { color: var(--rlv-paper); }
.rlv-dark .rlv-section-head__title em    { color: var(--rlv-snapdragon); }
.rlv-section-head__lede {
  font-size: 17px; line-height: 1.7;
  color: var(--rlv-ink-soft);
  margin: 24px 0 0;
  max-width: 56ch;
  font-weight: 300;
}
.rlv-section-head__lede em {
  font-family: var(--rlv-font-display);
  font-style: italic; font-weight: 400;
  color: var(--rlv-marmalade);
}

/* ----------------------------------------------------------------------------
   .rlv-topbar — sticky, scroll-aware site header.
   Transparent over hero, switches to frosted paper at .is-scrolled.
   JS should add/remove .is-scrolled at scroll threshold ~32px.
   ------------------------------------------------------------------------- */
.rlv-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 22px clamp(20px, 3vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--rlv-paper);
  transition: background 240ms var(--rlv-ease),
              padding 240ms var(--rlv-ease),
              border-color 240ms var(--rlv-ease),
              backdrop-filter 240ms var(--rlv-ease),
              color 240ms var(--rlv-ease);
}
.rlv-topbar.is-scrolled {
  background: rgba(250, 248, 243, 0.70);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  padding: 14px clamp(20px, 3vw, 40px);
  border-bottom-color: rgba(27, 31, 35, 0.10);
  color: var(--rlv-ink);
}
.rlv-topbar__brand { display: flex; align-items: center; gap: 12px; }
.rlv-topbar__logo {
  width: 44px; height: 44px;
  border-radius: 50%; flex-shrink: 0;
  transition: width 240ms var(--rlv-ease), height 240ms var(--rlv-ease), box-shadow 240ms var(--rlv-ease);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 6px 14px -6px rgba(0, 0, 0, 0.45);
}
.rlv-topbar.is-scrolled .rlv-topbar__logo {
  width: 38px; height: 38px;
  box-shadow:
    0 0 0 1px rgba(27, 31, 35, 0.08),
    0 4px 10px -4px rgba(27, 31, 35, 0.20);
}
.rlv-topbar__wm { text-align: left; line-height: 0.95; }
.rlv-topbar__wm-top {
  font-family: var(--rlv-font-body);
  font-weight: 600; font-size: 8px;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(250, 248, 243, 0.65);
  transition: color 240ms var(--rlv-ease);
}
.rlv-topbar.is-scrolled .rlv-topbar__wm-top { color: var(--rlv-ink-muted); }
.rlv-topbar__wm-name {
  font-family: var(--rlv-font-display);
  font-weight: 300; font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: 2px;
  color: currentColor;
}
.rlv-topbar__wm-name em { font-style: italic; }
.rlv-topbar__wm-rule {
  width: 22px; height: 1px;
  background: rgba(250, 248, 243, 0.55);
  margin: 4px auto 2px;
  transition: background 240ms var(--rlv-ease);
}
.rlv-topbar.is-scrolled .rlv-topbar__wm-rule { background: rgba(1, 88, 113, 0.45); }
.rlv-topbar__wm-place {
  font-family: var(--rlv-font-body);
  font-weight: 400; font-size: 8px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250, 248, 243, 0.65);
  transition: color 240ms var(--rlv-ease);
}
.rlv-topbar.is-scrolled .rlv-topbar__wm-place { color: var(--rlv-ink-muted); }
.rlv-topbar__nav {
  display: flex; align-items: center; gap: 36px;
  list-style: none; padding: 0; margin: 0;
}
.rlv-topbar__nav a {
  font-family: var(--rlv-font-body);
  font-size: 13px; font-weight: 400;
  color: currentColor;
  text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color 180ms var(--rlv-ease);
}
.rlv-topbar__nav a:hover { color: var(--rlv-marmalade); }
.rlv-topbar__nav a.is-active { font-weight: 500; }
.rlv-topbar__nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--rlv-marmalade);
}
.rlv-topbar__lang {
  font-family: var(--rlv-font-body);
  font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250, 248, 243, 0.55);
  display: inline-flex; gap: 6px; align-items: center;
  padding-left: 28px;
  border-left: 1px solid rgba(250, 248, 243, 0.22);
  transition: color 240ms var(--rlv-ease), border-color 240ms var(--rlv-ease);
}
.rlv-topbar.is-scrolled .rlv-topbar__lang {
  color: var(--rlv-ink-muted);
  border-left-color: var(--rlv-rule);
}
.rlv-topbar__lang a { color: inherit; text-decoration: none; }
.rlv-topbar__lang .on { color: var(--rlv-paper); font-weight: 500; }
.rlv-topbar.is-scrolled .rlv-topbar__lang .on { color: var(--rlv-ink); }

/* ----------------------------------------------------------------------------
   .rlv-hero — full-bleed photo hero.
   Holds a centered Fraunces headline with a snapdragon italic accent.
   Optional bottom bar with credit + scroll cue.
   ------------------------------------------------------------------------- */
.rlv-hero {
  position: relative;
  height: clamp(560px, 82vh, 880px);
  width: 100%;
  overflow: hidden;
  background: var(--rlv-ink);
  color: var(--rlv-paper);
}
.rlv-hero__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.rlv-hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 45% at 50% 50%,
      rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0) 85%),
    linear-gradient(180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.18) 22%,
      rgba(0,0,0,0.18) 70%,
      rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.rlv-hero__content {
  position: absolute; inset: 0;
  max-width: 1480px;
  margin: 0 auto;
  padding: 48px clamp(20px, 3vw, 60px) 64px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
}
.rlv-hero__meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.rlv-hero__meta-marker {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rlv-marmalade);
  box-shadow: 0 0 0 4px rgba(193, 101, 18, 0.18);
}
.rlv-hero__meta span {
  font-family: var(--rlv-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250, 248, 243, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.rlv-hero__title {
  font-family: var(--rlv-font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--rlv-paper);
  max-width: 16ch;
  margin: 0;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.55),
    0 1px 4px rgba(0, 0, 0, 0.35);
}
.rlv-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rlv-snapdragon);
}
.rlv-hero__sub {
  margin-top: 28px;
  max-width: 56ch;
  font-family: var(--rlv-font-body);
  font-size: 16px; font-weight: 400;
  line-height: 1.65;
  color: rgba(250, 248, 243, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.rlv-hero__sub em {
  font-family: var(--rlv-font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--rlv-snapdragon);
}
.rlv-hero__bottom {
  position: absolute;
  left: clamp(20px, 3vw, 60px);
  right: clamp(20px, 3vw, 60px);
  bottom: clamp(40px, 6vh, 64px);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 248, 243, 0.22);
}
@media (max-width: 760px) {
  .rlv-hero__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
.rlv-hero__credit {
  font-family: var(--rlv-font-body);
  font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250, 248, 243, 0.55);
}
.rlv-hero__credit em {
  font-family: var(--rlv-font-display);
  font-weight: 300; font-style: italic;
  text-transform: none; letter-spacing: 0;
  font-size: 13px;
  color: rgba(250, 248, 243, 0.85);
}
.rlv-hero__scroll {
  font-family: var(--rlv-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250, 248, 243, 0.78);
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: none;
  text-decoration: none;
  transition: color 180ms var(--rlv-ease);
}
.rlv-hero__scroll:hover { color: var(--rlv-paper); }
.rlv-hero__scroll svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
  transition: transform 220ms var(--rlv-ease);
}
.rlv-hero__scroll:hover svg { transform: translateY(2px); }

/* ----------------------------------------------------------------------------
   .rlv-step — numbered step with italic numeral + thin marmalade rule.
   For "How this works", "What to expect", any sequenced explanation.
   ------------------------------------------------------------------------- */
.rlv-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rlv-step__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.rlv-step__num {
  font-family: var(--rlv-font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: var(--rlv-marmalade);
  letter-spacing: -0.04em;
  font-feature-settings: "onum" 1;
  font-variant-numeric: oldstyle-nums;
  flex: 0 0 auto;
}
.rlv-step__rule {
  flex: 1 1 auto;
  height: 1px;
  background: var(--rlv-marmalade);
  opacity: 0.32;
  align-self: end;
  margin-bottom: 10px;
}
.rlv-step__icon {
  display: inline-flex;
  width: 26px; height: 26px;
  color: var(--rlv-marmalade);
}
.rlv-step__icon svg {
  width: 100%; height: 100%;
  fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.rlv-step__title {
  font-family: var(--rlv-font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--rlv-ink);
  margin: 6px 0 0;
}
.rlv-step__desc {
  font-family: var(--rlv-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--rlv-ink-soft);
  margin: 4px 0 0;
  max-width: 30ch;
  font-weight: 300;
}

/* ----------------------------------------------------------------------------
   .rlv-plate — paper-warm rounded section panel, soft custard wash at top.
   Holds groups of steps or stats without turning each into a card.
   ------------------------------------------------------------------------- */
.rlv-plate {
  position: relative;
  background: var(--rlv-paper-warm);
  border: 1px solid rgba(193, 101, 18, 0.12);
  border-radius: 18px;
  padding: 48px 40px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 60px -28px rgba(27, 31, 35, 0.22),
    0 8px 18px -10px rgba(27, 31, 35, 0.10);
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%,
    rgba(254, 216, 119, 0.10) 0%, rgba(254, 216, 119, 0) 70%);
}
@media (max-width: 1080px) { .rlv-plate { padding: 40px 28px; } }
@media (max-width: 560px)  { .rlv-plate { padding: 32px 24px; } }

/* ----------------------------------------------------------------------------
   .rlv-dark — section context flag. Apply to any section with a dark
   background (Lyons, Ink) so italics, links, and accents switch from
   marmalade → snapdragon and link borders adapt. Pairs with the rules in
   tokens.css for em-on-dark.
   ------------------------------------------------------------------------- */
.rlv-dark              { color: var(--rlv-custard); }
.rlv-dark .rlv-eyebrow { color: var(--rlv-snapdragon); }
.rlv-dark em           { color: var(--rlv-snapdragon); }

/* ----------------------------------------------------------------------------
   .rlv-season — the year-in-review activity calendar.
   ----------------------------------------------------------------------------
   A 12-month horizontal grid where each row represents a category (windsports,
   whales, fishing, etc.) and pill-shaped bars indicate seasonality across the
   year. Multi-lane: bars can stack vertically within a row when they overlap.

   Markup pattern:
     <div class="rlv-season">
       <div class="rlv-season__months">
         <span>The year in La Ventana</span>
         <span>Jan</span><span>Feb</span>…<span>Dec</span>
       </div>
       <div class="rlv-season__row">
         <div class="rlv-season__label">
           <span class="rlv-season__label-title">Windsports</span>
           <span class="rlv-season__label-sub">Kite · Wing · Windsurf</span>
         </div>
         <div class="rlv-season__cells">
           <div class="rlv-season__cell"></div> × 12 (column dividers)
           <div class="rlv-season__bar rlv-season__bar--land rlv-season__bar--peak"
                style="grid-column: 1 / span 3; grid-row: 1;">
             <span class="rlv-season__bar-label">Peak · 20–25 kt</span>
           </div>
         </div>
       </div>
       …
     </div>

   Bar positioning: use grid-column for span (1-13) and grid-row for stack lane.
   Colors: --land (marmalade) for sky/land activity, --sea (lyons) for water.
   Tiers: --peak (95% opacity), --mid (62%), --light (32%, label flips to ink).
   ------------------------------------------------------------------------- */
.rlv-season {
  border-top: 1px solid var(--rlv-rule);
  border-bottom: 1px solid var(--rlv-rule);
}
.rlv-season__months {
  display: grid;
  grid-template-columns: 180px repeat(12, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--rlv-rule);
}
.rlv-season__months span:first-child {
  font-family: var(--rlv-font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rlv-marmalade);
  padding: 16px 0;
  border-right: 1px solid var(--rlv-rule);
  display: flex; align-items: center;
}
.rlv-season__months span + span {
  font-family: var(--rlv-font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--rlv-ink);
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid var(--rlv-rule);
  font-feature-settings: "onum" 1;
  font-variant-numeric: oldstyle-nums;
}
.rlv-season__months span:last-child { border-right: none; }

.rlv-season__row {
  display: grid;
  grid-template-columns: 180px repeat(12, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--rlv-rule);
}
.rlv-season__row:last-child { border-bottom: none; }

.rlv-season__label {
  padding: 22px 0;
  border-right: 1px solid var(--rlv-rule);
  display: flex; flex-direction: column; gap: 4px;
}
.rlv-season__label-title {
  font-family: var(--rlv-font-display);
  font-weight: 400; font-style: italic;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--rlv-ink);
  line-height: 1;
}
.rlv-season__label-sub {
  font-family: var(--rlv-font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rlv-ink-muted);
}

/* Cells container: 12 columns × auto-sized rows (18px tall, 6px gap).
   Column dividers fade at top/bottom via mask so they don't bluntly meet
   the row borders. */
.rlv-season__cells {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 18px;
  row-gap: 6px;
  padding: 22px 0;
  align-content: center;
  position: relative;
}
.rlv-season__cell {
  grid-row: 1 / -1;
  border-right: 1px solid rgba(27, 31, 35, 0.08);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  pointer-events: none;
}
.rlv-season__cell:last-child { border-right: none; }

/* The bars — solid color pills with a short floating shadow */
.rlv-season__bar {
  height: 100%;
  border-radius: 999px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 1px 2px rgba(27, 31, 35, 0.05),
    0 4px 10px -4px rgba(27, 31, 35, 0.18);
}
.rlv-season__bar--light { box-shadow: 0 1px 2px rgba(27, 31, 35, 0.04); }

.rlv-season__bar--sea.rlv-season__bar--peak  { background: rgba(1, 88, 113, 0.95); }
.rlv-season__bar--sea.rlv-season__bar--mid   { background: rgba(1, 88, 113, 0.62); }
.rlv-season__bar--sea.rlv-season__bar--light { background: rgba(1, 88, 113, 0.32); }

.rlv-season__bar--land.rlv-season__bar--peak  { background: rgba(193, 101, 18, 0.95); }
.rlv-season__bar--land.rlv-season__bar--mid   { background: rgba(193, 101, 18, 0.62); }
.rlv-season__bar--land.rlv-season__bar--light { background: rgba(193, 101, 18, 0.32); }

.rlv-season__bar-label {
  position: absolute;
  top: 50%; left: 12px;
  transform: translateY(-50%);
  font-family: var(--rlv-font-body);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rlv-paper);
  white-space: nowrap;
}
.rlv-season__bar--light .rlv-season__bar-label { color: var(--rlv-ink-soft); }

@media (max-width: 920px) {
  .rlv-season__months span + span { font-size: 12px; padding: 12px 4px; }
  .rlv-season__months { grid-template-columns: 110px repeat(12, 1fr); }
  .rlv-season__row { grid-template-columns: 110px repeat(12, 1fr); }
  .rlv-season__label-title { font-size: 16px; }
  .rlv-season__label-sub { font-size: 9px; letter-spacing: 0.16em; }
}
@media (max-width: 720px) {
  .rlv-season__bar-label { display: none; }
}
@media (max-width: 640px) {
  .rlv-season__months span + span { font-size: 10px; letter-spacing: 0; }
  .rlv-season__months { grid-template-columns: 90px repeat(12, 1fr); }
  .rlv-season__row { grid-template-columns: 90px repeat(12, 1fr); }
  .rlv-season__label-title { font-size: 13px; letter-spacing: -0.01em; }
  .rlv-season__label-sub { display: none; }
}
